func runtime.bucketShift
12 uses
runtime (current package)
map.go#L185: func bucketShift(b uint8) uintptr {
map.go#L192: return bucketShift(b) - 1
map.go#L347: base := bucketShift(b)
map.go#L355: nbuckets += bucketShift(b - 4)
map.go#L908: if bucket == bucketShift(it.B) {
map.go#L1103: return count > bucketCnt && uintptr(count) > loadFactorNum*(bucketShift(B)/loadFactorDen)
map.go#L1137: return bucketShift(oldB)
map.go#L1524: dstArraySize := int(bucketShift(dst.B))
map.go#L1525: srcArraySize := int(bucketShift(src.B))
map.go#L1547: oldSrcArraySize := int(bucketShift(oldB))
map.go#L1615: arraySize := int(bucketShift(h.B))
map.go#L1678: arraySize := int(bucketShift(h.B))
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |